home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Modes / latex Mode / latexEnvironments.tcl < prev    next >
Encoding:
Text File  |  1998-11-14  |  19.9 KB  |  736 lines  |  [TEXT/ALFA]

  1. ## -*-Tcl-*-
  2.  # ###################################################################
  3.  #  Vince's  Additions - an extension package for Alpha
  4.  # 
  5.  #  FILE: "latexEnvironments.tcl"
  6.  #                                    created: 22/1/98 {9:00:25 am} 
  7.  #                                last update: 14/11/98 {9:10:31 am} 
  8.  #  Author: Vince Darley
  9.  #  E-mail: <darley@fas.harvard.edu>
  10.  #    mail: Division of Engineering and Applied Sciences, Harvard University
  11.  #          Oxford Street, Cambridge MA 02138, USA
  12.  #     www: <http://www.fas.harvard.edu/~darley/>
  13.  #  
  14.  # Some copyright (c) 1998  Vince Darley
  15.  # 
  16.  # See the file "license.terms" for information on usage and redistribution
  17.  # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  18.  # 
  19.  # Many procs written/adapted from Pierre Basso's.  Many thanks for
  20.  # the great improvements.
  21.  # ###################################################################
  22.  ##
  23.  
  24. #This item is off by default now.  Add it to your TeXPrefs.tcl if desired.
  25. #set TeXbodyOptions(enumerate) "\[•a|i•\]"
  26. set TeXbodyOptions(list) "\{••\}\{••\}"
  27. set TeXbodyOptions(figure) "\[tbp\]"
  28. set TeXbodyOptions(floatingfigure) "\{•width•\}"
  29.  
  30. # ◊◊◊◊ Embeddable environments ◊◊◊◊ #
  31.  
  32. proc TeX::Figure {} {
  33.     set fig_types [list "Normal" "Floating" \
  34.         "2 side-by-side" "3 side-by-side" "4 side-by-side" \
  35.         "2, one above the other" \
  36.         "4 in a 2x2 block" \
  37.         "6 with 3 across, 2 down" \
  38.         "6 with 2 across, 3 down" \
  39.         "other…" \
  40.         ]
  41.     set fig [listpick -p "Pick a figure type to insert:" $fig_types]
  42.     if {$fig == ""} { return "" }
  43.  
  44.     global TeXbodyOptions
  45.     if {$fig == "Floating"} {
  46.         set t $TeXbodyOptions(floatingfigure)
  47.     } else {
  48.         set t $TeXbodyOptions(figure)
  49.     }
  50.     append t "\n\t"
  51.  
  52.     switch $fig {
  53.         "Normal" -
  54.         "Floating" {
  55.             append t "\\centerline\{\\includegraphics\[•shape,orientation•\]"
  56.             append t "\{•graphics file•\}\}\r\t"
  57.             append t "\\caption•\[short title for t.o.f.\]•\{•caption•\}\r\t"
  58.             append t "\\protect[TeX::label fig]"
  59.             if {$fig == "Floating"} {
  60.                 text::replace {\begin{figure}} {\begin{floatingfigure}} 0
  61.                 text::replace {\end{figure}} {\end{floatingfigure}} 1
  62.                 TeX::RequirePackage floatflt
  63.             }
  64.         }
  65.         "2 side-by-side" {
  66.             append t [TeX::_subFigure 2 1]
  67.         }
  68.         "3 side-by-side" {
  69.             append t [TeX::_subFigure 3 1]
  70.         }
  71.         "4 side-by-side" {
  72.             append t [TeX::_subFigure 4 1]
  73.         }
  74.         "2, one above the other" {
  75.             append t [TeX::_subFigure 1 2]
  76.         }
  77.         "4 in a 2x2 block" {
  78.             append t [TeX::_subFigure 2 2]
  79.         }
  80.         "6 with 3 across, 2 down" {
  81.             append t [TeX::_subFigure 3 2]
  82.         }
  83.         "6 with 2 across, 3 down" {
  84.             append t [TeX::_subFigure 2 3]
  85.         }
  86.         "other…" {
  87.             set w [prompt "Number of subfigures, horizontally" "2"]
  88.             set h [prompt "Number of subfigures, vertically" "2"]
  89.             append t [TeX::_subFigure $w $h]
  90.         }
  91.         
  92.     }
  93.     return $t    
  94. }
  95.  
  96.  
  97. # This procedure is an improved version of tcl programming 
  98. # of tabular environment. 
  99. #
  100. # This TeX::tabular procedure asks for vertical and for horizontal
  101. # lines. But the main Improvements  affect   providing 
  102. # the list of options. When clicking in TeX menu mode 
  103. # the environment "tabular" this procedure asks for a list
  104. # of options given in following way:
  105. #  opt1 opt2 opt3 .....
  106. # opt1, 2, 3, .. are any kind of option allowed by LaTeX
  107. # for environment tabular:
  108. #     c l r c p m b 
  109. # Options >, <, @ and ! are also allowed and you can provide:
  110. #     >c >l >r >p >m >b
  111. #     c< l< r< p< m< b<
  112. #     c@ l@ r@ p@ m@ b@
  113. #     c! l! r! p! m! b!
  114. # Procedure tabular will put left and right braces in case of
  115. # options p, m, b, @, !.
  116. #
  117. # WARNING: space is needed between two options!!!!!!l 
  118. # If the number of options exceed the number of columns
  119. # a message is displayed and the list of options is again asked.
  120. # If the number of options is lesser thanthe number of columns
  121. # the missing options are provided as the last option of the list;
  122. # for example: 5 columns asked and a list of options  "c l r"  with
  123. # vertical line "yes" would create a tabular environment:
  124. # \begin{tabular}{|c|l|r|r|r|}
  125. #
  126. # Pierre BASSO 
  127. # email:basso@lim.univ-mrs.fr
  128. #
  129.  
  130. proc TeX::BuildTabular {env} {
  131.  
  132. # ask for number of rows, columns, vertical and horizontal lines and options
  133.     set values [dialog -w 500 -h 400\
  134.       -t "how many rows? " 10 10 180 30 -e "3" 220 10 240 30 \
  135.       -t "how many columns? " 10 40 180 60 -e "3" 220 40 240 60 \
  136.       -t "vertical line (yes/no)? " 10 80 200 100 -e "yes" 220 80 250 100 \
  137.       -t "horizontal line (yes/no)? " 10 110 200 130 -e "yes" 220 110 250 130 \
  138.       -t "options:  c l r p m b  >c >l >r >p >m >b  c< l< r< p< m< b<" 10 150 400 170\
  139.       -t " c@ l@ r@ p@ m@ b@  c! l! r! p! m! b!" 140 170 400 190\
  140.       -e "c" 220 200 450 230 \
  141.       -t "position  (b/t or empty)" 10 250 180 270 -e "" 220 250 240 270\
  142.       -t "width if tabular*" 10 290 180 310 -e "" 220 290 320 310\
  143.       -b OK 50 350 115 370 -b Cancel 250 350 315 370]
  144.     set cancel [string trim [lindex $values 8]]
  145.     if {$cancel == 1} {beep ; return}
  146.  
  147. #   search for number of rows, default 3
  148. #   search for number of columns, default 3    
  149. #   
  150.     set numberRows [string trim [lindex $values 0]]
  151.     set numberColumns [string trim [lindex $values 1]]                        
  152.     if {![is::PositiveInteger $numberRows] || ![is::PositiveInteger $numberColumns]} {
  153.         beep
  154.         alertnote "invalid input:  unsigned, positive integer required"
  155.         return
  156.     }
  157.  
  158. # ask for  vertical lines : default yes
  159.     set vline [string trim [lindex $values 2]]
  160.     if {$vline == "yes" } {set vline "|" } else { set vline "" }
  161.  
  162. # tabular options 
  163.     set options [string trim [lindex $values 4]]
  164.     set numberOpts [llength $options]
  165.     set arg "{$vline"
  166.     for {set j 0} {$j < $numberColumns} {incr j} {
  167.         if {$j < $numberOpts} {
  168.             set optCol [lindex $options $j]
  169.         }
  170.         if {$optCol == "c" || $optCol == "l" || $optCol == "r"} {
  171.            append arg "$optCol$vline"
  172.            continue
  173.         }
  174.         if {$optCol == "p" || $optCol == "m" || $optCol == "b"\
  175.             || $optCol == "@" || $optCol == "!"} {
  176.             append arg "$optCol\{••\}$vline"
  177.             continue
  178.         }
  179.         if {$optCol == ">c" || $optCol == ">l" || $optCol == ">r"} {
  180.             append arg  ">\{••\}"    
  181.             set secondopt [string index $optCol 1]
  182.             append arg "$secondopt$vline"
  183.             continue
  184.         }
  185.         if {$optCol == ">p" || $optCol == ">m" || $optCol == ">b"} {
  186.             append arg  ">\{••\}"    
  187.             set secondopt [string index $optCol 1]
  188.             append arg "$secondopt\{••\}$vline"
  189.             continue
  190.         }
  191.         if {$optCol == "c<" || $optCol == "l<" || $optCol == "r<"} {
  192.             set secondopt [string index $optCol 0]
  193.             append arg "$secondopt<\{••\}$vline"
  194.             continue
  195.         }
  196.         if {$optCol == "p<" || $optCol == "m<" || $optCol == "b<"} {
  197.             set secondopt [string index $optCol 0]
  198.             append arg "$secondopt\{••\}<\{••\}$vline"
  199.             continue
  200.         }
  201.         if {$optCol == "c@" || $optCol == "l@" || $optCol == "r@"} {
  202.             set secondopt [string index $optCol 0]
  203.             append arg "$secondopt@\{••\}"
  204.             continue
  205.         }
  206.         if {$optCol == "p@" || $optCol == "m@" || $optCol == "b@"} {
  207.             set secondopt [string index $optCol 0]
  208.             append arg "$secondopt\{••\}@\{••\}"
  209.             continue
  210.         }
  211.         if {$optCol == "c!" || $optCol == "l!" || $optCol == "r!"} {
  212.             set secondopt [string index $optCol 0]
  213.             append arg "$secondopt!\{••\}"
  214.             continue
  215.         }
  216.         if {$optCol == "p!" || $optCol == "m!" || $optCol == "b!"} {
  217.             set secondopt [string index $optCol 0]
  218.             append arg "$secondopt\{••\}!\{••\}"
  219.             continue
  220.         }
  221.     }
  222.     append arg "}"
  223.     append t $arg "\r\t"
  224. # set horizontal lines 
  225.     set hline [string trim [lindex $values 3]]
  226.     if {$hline == "yes"} {set hline "\\hline" } else {set hline "" }
  227.     set body "$hline\r\t"
  228.     for {set i 1} {$i <= $numberRows} {incr i} {
  229.         append body "[buildRow $numberColumns]"
  230.         append body "  \\\\\r\t$hline\r\t"
  231.     }
  232.     append t $body "•• "
  233. # set width if tabular*
  234.     if {$env == "tabular*"} {
  235.         set width [string trim [lindex $values 6]]
  236.         if {$width == ""} {set width "••"}
  237.         append t "\{" $width "\}" 
  238.     }    
  239.       
  240. # set position
  241.     set position [string trim [lindex $values 5]]
  242.     if {$position != ""} {
  243.         append t "\[" $position "\]" 
  244.     }
  245.     return $t
  246. }
  247.  
  248. #####################  lists  ##########################
  249.  
  250. #
  251. # Build lists. 
  252. # This procedure is called for building environments itemize, enumerate,
  253. # description, list and trivlist.
  254. #
  255. # Pierre BASSO 
  256. # email:basso@lim.univ-mrs.fr
  257.  
  258. proc TeX::BuildList {env} {
  259.     prompt::simple \
  260.       [list "how many items?" numberitems 3 N] 
  261.     global TeXbodyOptions
  262.     if [info exists TeXbodyOptions($env)] {
  263.         set t $TeXbodyOptions($env)
  264.     }
  265.     append t "\n\t"
  266.     
  267.     for {set j 1} {$j <= $numberitems} {incr j} {
  268.         if {$env == "description" || $env == "trivlist"} {
  269.             append t "\\item\[••\] ••"
  270.         } else {
  271.             append t "\\item ••"
  272.         }
  273.         if {$j < $numberitems} {append t "\r\r\t"}
  274.     }
  275.     return $t
  276. }
  277.  
  278. # ◊◊◊◊ Boxes ◊◊◊◊ #
  279.  
  280. proc TeX::parbox {} {
  281.     prompt::simple \
  282.       [list "position (optional)?" position ""] \
  283.       [list "height (optional)?" height ""] \
  284.       [list "inner position (optional)?" innerpos ""] \
  285.       [list "width?" width 3in]
  286.  
  287.     if {$position != ""} {
  288.         append res "\[$position\]"
  289.     }
  290.     if {$height != ""} {
  291.         append res "\[$height\]"
  292.     }
  293.     if {$innerpos != ""} {
  294.         append res "\[$innerpos\]"
  295.     }
  296.     if {$width == ""} { set width "•required width•" }
  297.     append res "\{$width\}\{••\}"
  298.     return $res    
  299. }  
  300.  
  301. proc TeX::boxes {} {
  302.     prompt::simple \
  303.       [list "width (optional)?" width ""] \
  304.       [list "position (optional)?" position ""]
  305.     
  306.     if {$width != ""} {
  307.         append res "\[$width\]"
  308.     } 
  309.     if {$position != ""} {
  310.         append res "\[$position\]"
  311.     }
  312.     append res "\{••\}"
  313.     return $res        
  314. }
  315.  
  316. proc TeX::raisebox {} {
  317.     prompt::simple \
  318.       [list "lift?" lift ""] \
  319.       [list "depth (optional)?" depth ""] \
  320.       [list "height (optional)?" height ""]
  321.     
  322.     if {$lift == ""} {set lift "•required lift•"}
  323.     append res "\{$lift\}"
  324.     if {$depth != ""} {
  325.         append res "\[$depth\]"
  326.     }
  327.     if {$height != ""} {
  328.         append res "\[$height\]"
  329.     }
  330.     
  331.     append res "\{••\}"
  332.     return $res    
  333.     
  334. }
  335.  
  336. proc TeX::sbox {} {
  337.     prompt::simple \
  338.       [list "command?" command ""] 
  339.     if {$command == ""} {set command "•required command•"}
  340.     append res "\{$command\}\{••\}"
  341.     return $res    
  342. }    
  343.  
  344. proc TeX::savebox {} {
  345.     prompt::simple \
  346.       [list "command?" command ""] \
  347.       [list "width (optional)?" width ""] \
  348.       [list "position (optional)?" position ""] 
  349.     
  350.     if {$command == ""} {set command "•required command•"}
  351.     append res "\{$command\}"
  352.     
  353.     if {$width != ""} {
  354.         append res "\[$width\]"
  355.     }
  356.     if {$position != ""} {
  357.         append res "\[$position\]"
  358.     }
  359.     
  360.     append res "\{•body•\}"
  361.     return $res    
  362.     
  363. }
  364.  
  365. proc TeX::rule {} {
  366.     prompt::simple \
  367.       [list "lift (optional)?" position ""] \
  368.       [list "width?" width ""] \
  369.       [list "height?" height ""]
  370.     if {$lift != ""} {
  371.         append res "\[$lift\]"
  372.     } 
  373.     
  374.     if {$width == ""} {set width "•required width•"}
  375.     append res "\{$width\}"
  376.     
  377.     if {$height == ""} { set height "•required height•" }
  378.     append res "\{$height\}•rule body•"
  379.  
  380.     return $res
  381. }
  382.  
  383. proc TeX::minipage {} {
  384.     prompt::simple \
  385.       [list "position (optional)?" position ""] \
  386.       [list "height (optional)?" height ""] \
  387.       [list "inner position (optional)?" innerpos ""] \
  388.       [list "width?" width 3in]
  389.     if {$position != ""} {
  390.         append res "\[$position\]"
  391.     }
  392.     if {$height != ""} {
  393.         append res "\[$height\]"
  394.     }
  395.     if {$innerpos != ""} {
  396.         append res "\[$innerpos\]"
  397.     }
  398.     if {$width == ""} { set width "•required width•" }
  399.     append res "\{$width\}\r\t•minipage body•"
  400.     return $res
  401. }
  402.  
  403. # ◊◊◊◊ Maths ◊◊◊◊ #
  404.  
  405. #    
  406. # Pierre BASSO 
  407. # email:basso@lim.univ-mrs.fr
  408. #
  409.  
  410. #
  411. # All the types of matrix
  412. #
  413. proc TeX::matrix {} {
  414.     prompt::simple \
  415.       [list "how many rows?" numberRows 2 N] \
  416.       [list "how many columns?" numberColumns 2 N]
  417.     set body "\r"
  418.     # build matrix
  419.     for {set i 1} {$i <= $numberRows} {incr i} {
  420.         append body "\t[buildRow $numberColumns]  "
  421.         if {$i != $numberRows} { append body "\\\\\r" }
  422.     }
  423.  
  424.     return $body
  425. }
  426.  
  427. #
  428. # Alignment at a single place of mathematical formula
  429. #
  430. proc TeX::align {} {
  431.     prompt::simple \
  432.       [list "how many equations?" numberRows 2 N] 
  433.     
  434.     #  align is a tabular with two columns
  435.     set numberColumns 2                            
  436.     # build alignment
  437.     set res "\r"
  438.     for {set i 1} {$i <= $numberRows} {incr i} {
  439.         append res "\t•• & •• [TeX::label eq]"
  440.         if {$i != $numberRows} { append res "\\\\\r" }
  441.     }
  442.     return $res    
  443. }
  444.  
  445.  
  446. #
  447. # Alignment at several places of mathematical formula
  448. #
  449. proc TeX::alignat {} {
  450.     prompt::simple \
  451.       [list "how many equations?" numberRows 2 N] \
  452.       [list "how many alignments?" numberColumns 2 N]
  453.  
  454.     append res "\{$numberColumns\}\r"
  455.     set numberColumns [expr $numberColumns*2 - 1]
  456.     # build alignment
  457.     for {set i 1} {$i <= $numberRows} {incr i} {
  458.         set j 1
  459.         while {$j < $numberColumns} {
  460.             append res "\t•• & "
  461.             incr j
  462.         }
  463.         append res "••  [TeX::label eq]"
  464.         if {$i != $numberRows} { append res "\\\\\r" }
  465.     }
  466.     return $res
  467. }
  468.  
  469.  
  470. # ◊◊◊◊ embeddable proc helpers ◊◊◊◊ #
  471.  
  472. ## 
  473.  # -------------------------------------------------------------------------
  474.  # 
  475.  # "TeX::_subFigure" --
  476.  # 
  477.  #  This is a helper, it is only called form the above TeX::Figure proc.
  478.  # -------------------------------------------------------------------------
  479.  ##
  480. proc TeX::_subFigure {w h} {
  481.     TeX::RequirePackage subfigure
  482.     set t "\\centering\r\t"
  483.     set wnum [lindex {x "" two three four five six seven} $w]
  484.     for {set hh $h} {$hh >0} {incr hh -1} {
  485.         for {set ww $w} {$ww >0} {incr ww -1} {
  486.             append t "\\subfigure\[•subfig caption•\]\{[TeX::label fig]%\r\t"
  487.             append t "\t\\includegraphics\[width=\\figs${wnum}\]"
  488.             append t "\{•graphics file•\}\}"
  489.             if {$ww != 1} {
  490.                 append t "\\goodgap${wnum}\r\t"
  491.             } else {
  492.                 if {$hh != 1} {
  493.                     append t "\\\\\r\t"
  494.                 } else {
  495.                     append t "%\r\t"
  496.                 }
  497.             }
  498.         }
  499.     }
  500.     append t "\\caption•\[short caption for t.o.f.\]•\{•caption•\}\r\t"
  501.     append t "[TeX::label fig]"
  502. }
  503.  
  504. #--------------------------------------------------------------------------
  505. # ◊◊◊◊ Environments: ◊◊◊◊
  506. #--------------------------------------------------------------------------
  507.  
  508. proc enumerate {} {
  509.     set envName "enumerate"
  510.     prompt::var "$envName:  how many items?" numberItems 3 \
  511.       is::PositiveInteger 1 "invalid input:  unsigned, postive integer required"
  512.     if {$numberItems} {
  513.         set body "\t\\item  •type first item•"
  514.         for {set i 1} {$i < $numberItems} {incr i} {
  515.             append body "\r\r\t\\item  ••"
  516.         }
  517.         append body "\r"
  518.     } else {
  519.         set body "\t••\r"
  520.     }
  521.     insertEnvironment $envName "" $body
  522. }
  523. proc itemize {} {
  524.     set envName "itemize"
  525.     prompt::var "$envName:  how many items?" numberItems 3 \
  526.       is::PositiveInteger 1 "invalid input:  unsigned, postive integer required"
  527.     if {$numberItems} {
  528.         set body "\t\\item  •type first item•"
  529.         for {set i 1} {$i < $numberItems} {incr i} {
  530.             append body "\r\r\t\\item  ••"
  531.         }
  532.         append body "\r"
  533.     } else {
  534.         set body "\t••\r"
  535.     }
  536.     insertEnvironment $envName "" $body
  537. }
  538. proc description {} {
  539.     set envName "description"
  540.     prompt::var "$envName:  how many items?" numberItems 3 \
  541.       is::PositiveInteger 1 "invalid input:  unsigned, postive integer required"
  542.     if {$numberItems} {
  543.         set body "\t\\item\[•label•\]  ••"
  544.         for {set i 1} {$i < $numberItems} {incr i} {
  545.             append body "\r\r\t\\item\[••\]  ••"
  546.         }
  547.         append body "\r"
  548.     } else {
  549.         set body "\t••\r"
  550.     }
  551.     insertEnvironment $envName "" $body
  552. }
  553. proc thebibliography {} {
  554.     set envName "thebibliography"
  555.     prompt::var "$envName:  how many items?" numberItems 3 \
  556.       is::PositiveInteger 1 "invalid input:  unsigned, postive integer required"
  557.     set arg "{9•length of the key field•}"
  558.     if {$numberItems} {
  559.         if {$numberItems > 9} {set arg "{99•length of the key field•}"}
  560.         set body "\t\\bibitem{••}  ••"
  561.         for {set i 1} {$i < $numberItems} {incr i} {
  562.             append body "\r\r\t\\bibitem{••}  ••"
  563.         }
  564.         append body "\r"
  565.     } else {
  566.         set body "\t••\r"
  567.     }
  568.     insertEnvironment $envName $arg $body
  569. }
  570. proc slide {} { doWrapEnvironment "slide" }
  571. proc overlay {} { doWrapEnvironment "overlay" }
  572. proc note {} { doWrapEnvironment "note" }
  573. proc figure {} {
  574.     global TeXmodeVars
  575.     set envName "figure"
  576.     set envArg "tbp"
  577.     set arg "\[${envArg}•Modify this argument?  (t=top; b=bottom; p=page; h=here; !=try harder)•\]"
  578.     set theIndentation [text::indentString [getPos]]
  579.     append arg "\r$theIndentation\t\\centering"
  580.     set body ""
  581.     set macro [lindex $TeXmodeVars(boxMacroNames) 0]
  582.     if { $macro != "" } {
  583.         set restOfMacros [cdr $TeXmodeVars(boxMacroNames)]
  584.         if { ![llength $restOfMacros] } {
  585.             append body "\t\\$macro{••}\r"
  586.         } else {
  587.             set cmd [list prompt "Choose a box macro:"]
  588.             lappend cmd $macro "" 
  589.             foreach boxMacroName $TeXmodeVars(boxMacroNames) {
  590.                 lappend cmd $boxMacroName
  591.             }
  592.             catch $cmd macro
  593.             if {$macro == "cancel"} {
  594.                 message "operation canceled"
  595.                 return
  596.             } elseif {$macro == ""} {
  597.                 # do nothing
  598.             } else {
  599.                 append body "\t\\$macro{••}\r"
  600.             }
  601.         }
  602.     }
  603.     append body "\t\\caption{••}\r"
  604.     append body "\t[TeX::label fig]\r"
  605.     if { $macro == "" } {
  606.         wrapEnvironment $envName $arg $body
  607.     } else {
  608.         insertEnvironment $envName $arg $body
  609.     }
  610. }
  611. proc table {} {
  612.     set envName "table"
  613.     set envArg "tbp"
  614.     set arg "\[${envArg}•Modify this argument?  (t=top; b=bottom; p=page; h=here; !=try harder)•\]"
  615.     set theIndentation [text::indentString [getPos]]
  616.     append arg "\r$theIndentation\t\\centering"
  617.     # The following statement puts the caption at the top:
  618.     append arg "\r$theIndentation\t\\caption{••}"
  619.     # The following statement puts the caption at the bottom:
  620. #     set body "\t\\caption{••}\r"
  621.     append body "\t[TeX::label tbl]\r"
  622.     wrapEnvironment $envName $arg $body
  623. }
  624. proc buildRow {jmax} {
  625.     set txt "••"
  626.     for {set j 1} {$j < $jmax} {incr j} {
  627.         append txt " & ••"
  628.     }
  629.     return $txt
  630. }
  631. proc tabular {} {
  632.     set envName "tabular"
  633.     prompt::var "$envName:  how many rows?" numberRows 3 \
  634.       is::PositiveInteger 1 "invalid input:  unsigned, postive integer required"
  635.     prompt::var "$envName:  how many columns?" numberColumns 3 \
  636.       is::PositiveInteger 1 "invalid input:  unsigned, postive integer required"
  637.     set arg "{|"
  638.     for {set j 1} {$j <= $numberColumns} {incr j} {
  639.         append arg "c•modify this argument?•|"
  640.     }
  641.     append arg "}"
  642.     set body "\t\\hline\r"
  643.     for {set i 1} {$i <= $numberRows} {incr i} {
  644.         append body "\t[buildRow $numberColumns]"
  645.         append body "  \\\\\r\t\\hline\r"
  646.     }
  647.     insertEnvironment $envName $arg $body
  648. }
  649. proc verbatim {} { doWrapEnvironment "verbatim" }
  650. proc quote {} { doWrapEnvironment "quote" }
  651. proc quotation {} { doWrapEnvironment "quotation" }
  652. proc verse {} { doWrapEnvironment "verse" }
  653. proc flushleft {} { doWrapEnvironment "flushleft" }
  654. proc center {} { doWrapEnvironment "center" }
  655. proc flushright {} { doWrapEnvironment "flushright" }
  656. proc minipage {} {
  657.     set arg "\[••\]{••}"
  658.     wrapEnvironment "minipage" $arg ""
  659.     message "enter the position \[b|c|t\] of the minipage, then the width"
  660. }
  661.  
  662. #--------------------------------------------------------------------------
  663. # ◊◊◊◊ Math Environments: ◊◊◊◊
  664. #--------------------------------------------------------------------------
  665.  
  666. proc math {} { checkMathMode "math" 0; doWrapEnvironment "math" }
  667. proc displaymath {} {
  668.     checkMathMode "displaymath" 0
  669.     global TeXmodeVars
  670.     if { $TeXmodeVars(useBrackets) } {
  671.         doWrapStructure {\[} {} {\]}
  672.     } else {
  673.         doWrapEnvironment "displaymath"
  674.     }
  675. }
  676.  
  677. proc mathEnvironment {envName} {
  678.     checkMathMode $envName 0
  679.     set body "\t[TeX::label eq]\r"
  680.     if {[wrapEnvironment $envName "" $body]} {
  681.         set msgText "equation wrapped"
  682.     } else {
  683.         set msgText "enter equation"
  684.     }
  685.     message $msgText
  686. }
  687.  
  688. proc TeXmathenv {envName} {
  689.     checkMathMode "$envName" 0
  690.     
  691.     prompt::var "$envName:  how many rows?" numberRows 3 \
  692.       is::PositiveInteger 1 "invalid input:  unsigned, postive integer required"
  693.  
  694.     switch $envName {
  695.         "eqnarray*" {
  696.             set row "\t[buildRow 3]"
  697.             for {set i 1} {$i < $numberRows} {incr i} {
  698.                 append body $row
  699.                 append body "  \\\\\r"
  700.             }
  701.             append body $row
  702.             append body "\r"
  703.         }
  704.         "eqnarray" {
  705.             set row "\t[buildRow 3]\r\t[TeX::label eq]"
  706.             for {set i 1} {$i < $numberRows} {incr i} {
  707.                 append body $row
  708.                 append body "  \\\\\r"
  709.             }
  710.             append body $row
  711.             append body "\r"
  712.         }
  713.         "array" {
  714.             prompt::var "$envName:  how many columns?" numberColumns 3 \
  715.               is::PositiveInteger 1 "invalid input:  unsigned, postive integer required"
  716.             set arg "{"
  717.             for {set j 1} {$j <= $numberColumns} {incr j} {
  718.                 append arg "c"
  719.             }
  720.             append arg "•Modify this argument?  (c=center; l=left; r=right; p{width}; a{text})•}"
  721.             set row "\t[buildRow $numberColumns]"
  722.             for {set i 1} {$i < $numberRows} {incr i} {
  723.                 append body $row
  724.                 append body "  \\\\\r"
  725.             }
  726.             append body $row
  727.             append body "\r"
  728.             insertEnvironment $envName $arg $body
  729.             return
  730.         }
  731.     }
  732.     insertEnvironment $envName "" $body
  733. }
  734.